home *** CD-ROM | disk | FTP | other *** search
/ Software Vault: The Gold Collection / Software Vault - The Gold Collection (American Databankers) (1993).ISO / cdr49 / 302_01.zip / DUMPF.C < prev    next >
Text File  |  1993-04-09  |  715b  |  33 lines

  1. /* Dump face to screen
  2.  
  3.    Copyright (c) 1988 by Gus O'Donnell
  4.  
  5.    Revision history:
  6.  
  7.    Version 1.00         February 29, 1988       As released.
  8.  
  9.    Version 1.01         March 20, 1988          Created libraries for all
  10.                                                 memory models
  11.  
  12. */
  13. #include <3d.h>
  14. #include <float.h>
  15. #include <math.h>
  16. #include <stdio.h>
  17.  
  18. void    dump_face (FACE this_face)
  19.  
  20. /* Dump a face to the screen. */
  21.  
  22. {
  23.     CORNER *chandle;    /* Pointer to traverse the corner list */
  24.  
  25.     chandle = this_face.first -> next;
  26.     while ((chandle -> next) != NULL)
  27.     {
  28.         dump_vec (*(chandle -> this));
  29.         chandle = chandle -> next;
  30.     }
  31.     printf ("next face = %08X\n",this_face.next);
  32. }
  33.